home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / NEWS32._W_ < prev    next >
Text File  |  1997-07-26  |  914b  |  33 lines

  1. #
  2. # Watcom makefile for NEWS [Win32]
  3. # Requires WIL32.DLL & WIL32.LIB
  4. #
  5. # To use: "wmake -f news32._w_"
  6. #
  7.  
  8. CCFLAGS = -w4 -zq -otexan -d2 -3s -bt=nt -mf -DWIN32
  9.  
  10. news.exe : about.obj async.obj paint.obj news.obj str.obj &
  11.                news.def wil32.lib news.res
  12.     wlink d all SYS nt_win op m libr wil32.lib op maxe=25 op q op symf &
  13.           @news32.lnk
  14.     wrc -q -ad news.res news.exe
  15.  
  16. about.obj : about.c
  17.     wcc386 about.c $(CCFLAGS)
  18.  
  19. async.obj : async.c
  20.     wcc386 async.c  $(CCFLAGS)
  21.  
  22. paint.obj : paint.c
  23.     wcc386 paint.c $(CCFLAGS)
  24.  
  25. news.obj : news.c
  26.     wcc386 news.c $(CCFLAGS)
  27.  
  28. str.obj : str.c
  29.     wcc386 str.c $(CCFLAGS)
  30.  
  31. news.res : news.rc
  32.     wrc news.rc -bt=nt -q -ad -r -fo=news.res
  33.